home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
misc
/
skoed1.14.lha
/
SkoEd
/
Arexx
/
NextError1.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1994-04-13
|
307 b
|
21 lines
/* REXX scrip to advance to next error */
address "SC_SCMSG"
'NEXT'
options results
'FILE'
file = result
'LINE'
line = result
'TEXT'
text = result
options
address SKOED1
if file = "" then
"Msg(No more errors)"
else do
"Load_File("||file||" NODUP)"
"Goto_Line("||line||")"
"Msg("||text||")"
end